home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume90 / util / lf / part01 / lf.doc < prev    next >
Text File  |  1990-04-15  |  831b  |  27 lines

  1. lf - (c) 1989 by Jeff Bevis
  2.  
  3. This nifty little program will provide you with a complete listing of all
  4. C functions contained within specified files.  Usage is as follows:
  5.  
  6.     lf [-scn] file.c [[-scn] file.c]
  7.  
  8. Any number of files may be specified on the command line.  The options are
  9. as follows:
  10.  
  11.     -s    Suppress printing of line numbers.  By default, line numbers
  12.         are printed.
  13.  
  14.     -c    Generate C source code in the form of function declarations.
  15.         I use this option to generate function declaration headers
  16.         (def.h) files for my larger programs.
  17.  
  18.     -n    Force normal formatting again.  Since flags can be specified
  19.         anywhere on the command line (before or after files), you
  20.         can cancel the c and s options for subsequent files with
  21.         this option.
  22.  
  23. The source code provided will compile equally well under UNIX or Amiga 
  24. Lattice.
  25.  
  26. -Jeff
  27.